Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 500 Bytes

File metadata and controls

21 lines (14 loc) · 500 Bytes

keywords: task properties, range, locate, SQL where, expression, DB SQL

SQL Where

Name in Migrated Code: Where.Add
Location in Migrated Code: InitializeDataView

2018 02 25 11H59 32

SQL Where DB SQL

The SQL Where DB SQL allowed the developer to add an SQL Where statement using columns from the Data View.

void InitializeDataView()
    {
        From = Orders;
        Where.Add("{0} in (10248,10252,10255)", Orders.OrderID);
    }